home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / GRP_CVTR / REALIZ10 / SAMP006.RDR < prev    next >
Text File  |  1994-06-09  |  1KB  |  38 lines

  1. *   The standard image given a global glassy finish (line 6)
  2.  
  3. global
  4.     sky cloudy
  5.     floor_color 103
  6.     default_texture glassy
  7.  
  8. * The following lines are required to include the library of shape definitions
  9. *   which are in POV format:
  10.  
  11. insert before_textures begin_insert
  12. #include "rshapes.inc"
  13. end_insert
  14.  
  15. * In this example only the Ellipsoid (the first one) is really required
  16. *   The rest have been included as if they are all used in balls.dxf:
  17.  
  18. block ELLIPS external Ellipsoid
  19. block ELLIPS_1 external Ellipsoid_1
  20. block ELLIPS_2 external Ellipsoid_2
  21. block ELLIPS_3 external Ellipsoid_3
  22. block CUBE   external Cube
  23. block LIGHT  external Light
  24. block SUN    external Sun
  25. block DISK_X external Disk_X
  26. block DISK_Y external Disk_Y
  27. block DISK_Z external Disk_Z
  28. block CONE_X external Cone_X
  29. block CONE_Y external Cone_Y
  30. block CONE_Z external Cone_Z
  31. block HBEAM  external Hbeam
  32. block WEDGE  external Wedge
  33. block ELBOW1  external Elbow1   bounded_by -0.15 -0.05 -0.11 1.05 1.15 0.11
  34. block ELBOW05  external Elbow05 bounded_by -0.075 -0.025 -0.06 1.025 1.075 0.06
  35.  
  36. * The elbows unlike the others do not occupy the 2x2x2 block hence the
  37. *   bounded_by parameter.
  38.